home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / superdog.swf / scripts / DefineSprite_1637 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-06-25  |  297 b   |  21 lines

  1. var now = 100;
  2. var justnow = now;
  3. var target;
  4. onEnterFrame = function()
  5. {
  6.    target = _parent.boss.hp * 5;
  7.    if(target != now)
  8.    {
  9.       bar._xscale -= 1;
  10.       now -= 1;
  11.    }
  12.    else
  13.    {
  14.       justnow = now;
  15.    }
  16.    if(bar._xscale <= 0)
  17.    {
  18.       bar._xscale = 0;
  19.    }
  20. };
  21.